Crate rustc_ap_rustc_span[][src]

Expand description

Source positions and related helper functions.

Important concepts in this module include:

  • the span, represented by SpanData and related types;
  • source code as represented by a SourceMap; and
  • interned strings, represented by Symbols, with some common symbols available statically in the sym module.

Unlike most compilers, the span contains not only the position in the source code, but also various other metadata, such as the edition and macro hygiene. This metadata is stored in SyntaxContext and ExpnData.

Note

This API is completely unstable and subject to change.

Re-exports

pub use hygiene::SyntaxContext;
pub use hygiene::DesugaringKind;
pub use hygiene::ExpnData;
pub use hygiene::ExpnId;
pub use hygiene::ExpnKind;
pub use hygiene::ForLoopLoc;
pub use hygiene::MacroKind;
pub use symbol::sym;
pub use symbol::Symbol;

Modules

Machinery for hygienic macros.

Levenshtein distances.

Types for tracking pieces of source code within a crate.

An “interner” is a data structure that associates values with usize tags and allows bidirectional lookup; i.e., given a value, one can easily find the type, and vice versa.

Structs

A byte offset.

A character offset.

Range inside of a Span used for diagnostics when we only have access to relative positions.

A source code location used for error reporting.

Identifies an offset of a multi-byte character in a SourceFile.

A collection of Spans.

Identifies an offset of a character that was normalized away from SourceFile.

A single source in the SourceMap.

The hash of the on-disk source file used for debug info.

A compressed span.

Represents a span.

A span together with some additional data.

Enums

The state of the lazy external source loading mechanism of a SourceFile.

Differentiates between real files and common virtual files.

Identifies an offset of a non-narrow character in a SourceFile.

Constants

Dummy span, both position and length are zero, syntax context is zero as well.

Statics

Traits

Requirements for a StableHashingContext to be used in this crate.

Functions

Calls the provided closure, using the provided SourceMap to format any spans that are debug-printed during the closure’s execution.

Type Definitions